home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 018a / kwikrite.zip / KWHARD.BAT < prev    next >
DOS Batch File  |  1991-06-15  |  3KB  |  65 lines

  1. echo off
  2. rem ... This is the batch file KWCOPY.BAT
  3. verify on
  4. if %1x==x goto explain
  5. cls
  6. echo ┌───────────────────────────────────────────────────────────┐
  7. echo │           Installation of KWIKWRITE Version 4.00          │
  8. echo │                      on HARD DISK %1                      │
  9. echo │                                                           │
  10. echo │      Please follow the instructions on the screen.        │
  11. echo └───────────────────────────────────────────────────────────┘
  12. echo ┌───────────────────────────────────────────────────────────┐
  13. echo │ This routine copies KWIKWRITE onto a hard disk            │
  14. echo │ subdirectory named %1\KW.  If this directory already      │
  15. echo │ exists, the old version is replaced with the new.         │
  16. echo └───────────────────────────────────────────────────────────┘
  17. md %1\KW
  18. echo ┌───────────────────────────────────────────────────────────┐
  19. echo │ NOTE:If you get the message "unable to create directory"  │
  20. echo │ during installation, it just means the KW directory is    │
  21. echo │ already created. The copying process will still be normal.│
  22. echo └───────────────────────────────────────────────────────────┘
  23. echo ┌───────────────────────────────────────────────────────────┐
  24. echo │ If you are not certain you wish to continue, press        │
  25. echo │ CTRL-BREAK. If you are certain you wish to continue, then │
  26. echo └───────────────────────────────────────────────────────────┘
  27. pause
  28. copy *.exe %1\KW
  29. copy *.hlp %1\KW
  30. copy kwprint.dat %1\KW
  31. copy KWTYPE %1\KW
  32. COpy kwtest %1\KW
  33. copy kw-short.doc %1\KW
  34. copy kworder %1\KW
  35. copy kw*.txt %1\KW
  36. copy *.bat %1\KW
  37. cls
  38. echo ┌───────────────────────────────────────────────────────┐
  39. echo │          COPY OF THE KWIKWRITE IS COMPLETE!           │
  40. echo │                                                       │
  41. echo │ Read the file LATENEWS.DOC for latest news and info.  │
  42. echo │                                                       │
  43. echo │ Begin the KWIKWRITE tutorial from the %1\KW directory │
  44. echo │ with the command KWTUTOR                              │
  45. echo └───────────────────────────────────────────────────────┘
  46. %1
  47. cd\kw
  48. goto End
  49. :Explain
  50. echo ┌───────────────────────────────────────────────────────┐
  51. echo │   The format of this command is:                      │
  52. echo │                                                       │
  53. echo │   KWHARD d:                                           │
  54. echo │                                                       │
  55. echo │   where d: is the name of the disk drive on which you │
  56. echo │   want the program installed.  For example, if you    │
  57. echo │   have the KWIKWRITE disk in the A: drive and want    │
  58. echo │   to install the program on the C: drive, the command │
  59. echo │   would look something like this . . .                │
  60. echo │                                                       │
  61. echo │   "A>KWHARD C:"                                       │
  62. echo └───────────────────────────────────────────────────────┘
  63. :End
  64.  
  65.